home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / intuition / drawimage.c < prev    next >
C/C++ Source or Header  |  1996-09-12  |  1KB  |  67 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: drawimage.c,v 1.2 1996/08/29 13:33:30 digulla Exp $
  4.     $Log: drawimage.c,v $
  5.     Revision 1.2  1996/08/29 13:33:30  digulla
  6.     Moved common code from driver to Intuition
  7.     More docs
  8.  
  9.     Revision 1.1  1996/08/23 17:28:18  digulla
  10.     Several new functions; some still empty.
  11.  
  12.  
  13.     Desc:
  14.     Lang: english
  15. */
  16. #include "intuition_intern.h"
  17.  
  18. /*****************************************************************************
  19.  
  20.     NAME */
  21.     #include <graphics/rastport.h>
  22.     #include <intuition/intuition.h>
  23.     #include <clib/intuition_protos.h>
  24.  
  25.     __AROS_LH4(void, DrawImage,
  26.  
  27. /*  SYNOPSIS */
  28.     __AROS_LHA(struct RastPort *, rp, A0),
  29.     __AROS_LHA(struct Image    *, image, A1),
  30.     __AROS_LHA(long             , leftOffset, D0),
  31.     __AROS_LHA(long             , topOffset, D1),
  32.  
  33. /*  LOCATION */
  34.     struct IntuitionBase *, IntuitionBase, 19, Intuition)
  35.  
  36. /*  FUNCTION
  37.     Draw an image.
  38.  
  39.     INPUTS
  40.     rp - The RastPort to render into
  41.     image - The image to render
  42.     leftOffset, topOffset - Where to place the image.
  43.  
  44.     RESULT
  45.     None.
  46.  
  47.     NOTES
  48.  
  49.     EXAMPLE
  50.  
  51.     BUGS
  52.  
  53.     SEE ALSO
  54.  
  55.     INTERNALS
  56.  
  57.     HISTORY
  58.     29-10-95    digulla automatically created from
  59.                 intuition_lib.fd and clib/intuition_protos.h
  60.  
  61. *****************************************************************************/
  62. {
  63.     __AROS_FUNC_INIT
  64.     __AROS_BASE_EXT_DECL(struct IntuitionBase *,IntuitionBase)
  65.     __AROS_FUNC_EXIT
  66. } /* DrawImage */
  67.